home *** CD-ROM | disk | FTP | other *** search
/ Tech Arsenal 1 / Tech Arsenal (Arsenal Computer).ISO / tek-04 / bipl.zip / PROGS.ZIP / ADLFIRST.ICN < prev    next >
Text File  |  1992-11-26  |  1KB  |  42 lines

  1. ############################################################################
  2. #
  3. #    File:     adlfirst.icn
  4. #
  5. #    Subject:  Program to write first line of addresses
  6. #
  7. #    Author:   Ralph E. Griswold
  8. #
  9. #    Date:     May 22, 1992
  10. #
  11. ###########################################################################
  12. #
  13. #     This program writes the first lines of entries in an address list file.
  14. #  If an argument is given, it counts only those that have designators
  15. #  with characters in the argument. Otherwise, it counts all entries.
  16. #
  17. ############################################################################
  18. #
  19. #  See also: address.doc, adlcheck.icn, adlfilter.icn, adllist.icn,
  20. #     adlsort,icn, labels.icn
  21. #
  22. ############################################################################
  23.  
  24. procedure main(arg)
  25.    local s, line
  26.  
  27.    s := cset(arg[1]) | &cset
  28.  
  29.    while line := read() do
  30.       line ? {
  31.          if any('#') & upto(s) then {
  32.             while line := read() | exit() do
  33.                if line[1] == ("*" | "#" ) then next
  34.                else {
  35.                   write(line)
  36.                   break
  37.                   }
  38.             }
  39.          }
  40.  
  41. end
  42.